ff272f1f3dae1134455/app/node_modules/sucrase">sucrase 30f7226d9a first commit 2 vuotta sitten supports-preserve-symlinks-flag 30f7226d9a first commit 2 vuotta sitten tailwind-color-palette 30f7226d9a first commit 2 vuotta sitten tailwindcss 30f7226d9a first commit 2 vuotta sitten thenify 30f7226d9a first commit 2 vuotta sitten thenify-all 30f7226d9a first commit 2 vuotta sitten to-regex-range 30f7226d9a first commit 2 vuotta sitten tr46 30f7226d9a first commit 2 vuotta sitten ts-interface-checker 30f7226d9a first commit 2 vuotta sitten uglify-js 30f7226d9a first commit 2 vuotta sitten underscore 30f7226d9a first commit 2 vuotta sitten upper-case 30f7226d9a first commit 2 vuotta sitten util-deprecate 30f7226d9a first commit 2 vuotta sitten valid-data-url 30f7226d9a first commit 2 vuotta sitten web-resource-inliner 30f7226d9a first commit 2 vuotta sitten webidl-conversions 30f7226d9a first commit 2 vuotta sitten whatwg-url 30f7226d9a first commit 2 vuotta sitten wrap-ansi 30f7226d9a first commit 2 vuotta sitten wrappy 30f7226d9a first commit 2 vuotta sitten y18n 30f7226d9a first commit 2 vuotta sitten yallist 30f7226d9a first commit 2 vuotta sitten yaml 30f7226d9a first commit 2 vuotta sitten yargs 30f7226d9a first commit 2 vuotta sitten yargs-parser 30f7226d9a first commit 2 vuotta sitten .yarn-integrity 30f7226d9a first commit 2 vuotta sitten tum/freight - Gogs: Simplico Git Service

暫無描述

submit_line.html 1.0KB

123456789101112131415
  1. {% load i18n admin_urls %}
  2. <div class="submit-row">
  3. {% block submit-row %}
  4. {% if show_save %}<input type="submit" value="{% translate 'Save' %}" class="default" name="_save">{% endif %}
  5. {% if show_delete_link and original %}
  6. {% url opts|admin_urlname:'delete' original.pk|admin_urlquote as delete_url %}
  7. <p class="deletelink-box"><a href="{% add_preserved_filters delete_url %}" class="deletelink">{% translate "Delete" %}</a></p>
  8. {% endif %}
  9. {% if show_save_as_new %}<input type="submit" value="{% translate 'Save as new' %}" name="_saveasnew">{% endif %}
  10. {% if show_save_and_add_another %}<input type="submit" value="{% translate 'Save and add another' %}" name="_addanother">{% endif %}
  11. {% if show_save_and_continue %}<input type="submit" value="{% if can_change %}{% translate 'Save and continue editing' %}{% else %}{% translate 'Save and view' %}{% endif %}" name="_continue">{% endif %}
  12. {% if show_close %}<a href="{% url opts|admin_urlname:'changelist' %}" class="closelink">{% translate 'Close' %}</a>{% endif %}
  13. {% endblock %}
  14. </div>